Quick Start section for GroupDocs.Metadata API Manage Metadata in your documents fast and easy with our intuitive and powerful API just with a few lines of code.
Let’s review common usage scenarios when documents are stored in a local drive and you want to manage them using GroupDocs.Metadata API....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...
This example demonstrates how to load a file of some particular format.
advanced_usage.loading_files.LoadingFileOfSpecificFormat
// Explicitly specifying the format of a file to load you can spare some time on detecting the format LoadOptions loadOptions = new LoadOptions(FileFormat.Spreadsheet); // Constants.InputXls is an absolute or relative path to your document. Ex: @"C:\Docs\source.xls" try (MetadataMetadata = new Metadata(Constants.InputXls, loadOptions)) { SpreadsheetRootPackage root = Metadata.getRootPackageGeneric(); // Use format-specific properties to extract or edit Metadata System....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...
Quick Start section for GroupDocs.Metadata API Manage Metadata in your documents fast and easy with our intuitive and powerful API just with a few lines of code.
Let’s review common usage scenarios when documents are stored in a local drive and you want to manage them using GroupDocs.Metadata API....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...
This code snippet demonstrates how to extract information about known properties that can be encountered in a particular package.
Load a file to examine Get a collection of PropertyDescriptor instances for any desired Metadata package Iterate through the extracted descriptors advanced_usage.GettingKnownPropertyDescriptors
try (MetadataMetadata = new Metadata(Constants.InputDoc)) { WordProcessingRootPackage root = Metadata.getRootPackageGeneric(); for (PropertyDescriptor descriptor : root.getDocumentProperties().getKnowPropertyDescriptors()) { System.out.println(descriptor.getName()); System.out.println(descriptor.getType()); System.out.println(descriptor.getAccessLevel()); for (PropertyTag tag : descriptor.getTags()) { System.out.println(tag); } System.out.println(); } } Note Not all possible properties are presented in the getKnowPropertyDescriptors collection....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...
Why To Migrate? Here are the key reasons to use the new updated API provided by GroupDocs.Parser for .NET since version 19.8:
Parser class is introduced as a single entry point to extract data from the document. Data extraction was unified for all data types. The overall document related classes were unified to common. Product architecture was redesigned from scratch in order to simplify passing options and classes to manipulate data....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...
Find answers about extracting text, images, and Metadata of different files using code on any platform....Metadata Product Family GroupDocs.Search...Product Family GroupDocs.Watermark Product Family GroupDocs.Merger...
Artcles listed in this page explain the common usage scenarios when documents are stored in a local drive and you want to manage them using GroupDocs.Metadata API...Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...
Learn how to open a file from local disk using GroupDocs.Metadata for Python via .NET....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...
This example demonstrates how to load a file from a stream using GroupDocs.Metadata for Python via .NET....Metadata Product Solution GroupDocs...Product Solution GroupDocs.Watermark Product Solution GroupDocs...
Use Python to add image watermark to PNG using Python for asset protection. Learn how to apply watermark to PNG in Python without affecting image clarity or transparency....Metadata Product Family GroupDocs.Search...Product Family GroupDocs.Watermark Product Family GroupDocs.Merger...